home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / shells / kiss-0.11 / kiss-0 / kiss / src / sourcefile.c < prev    next >
C/C++ Source or Header  |  1995-03-23  |  202b  |  16 lines

  1. #include "kiss.h"
  2.  
  3. void sourcefile (char *name)
  4. {
  5.     FILE
  6.     *inf;
  7.  
  8.     if (! (inf = fopen (name, "r")) )
  9.     {
  10.     warning ("cannot open \"%s\" for reading", name);
  11.     return;
  12.     }
  13.  
  14.     yypushfile (inf);
  15. }
  16.